home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr35 / jamapi.zip / JAMUTIL.ZIP / MAKEFILE.GCC < prev    next >
Text File  |  1993-07-01  |  546b  |  27 lines

  1. #
  2. #   JAM(mbp) - The Joaquim-Andrew-Mats Message Base Proposal
  3. #
  4. #   JAM Utility
  5. #
  6. #   Written by Mats Wallin
  7. #
  8. #   ----------------------------------------------------------------------
  9. #
  10. #   makefile (JAMmb)
  11. #
  12. #   Make file for the JAMUTIL program and GCC for a Sparc
  13. #
  14. #   Copyright 1993 Joaquim H. Homrighausen, Andrew Milner, Mats Birch, and
  15. #   Mats Wallin. ALL RIGHTS RESERVED.
  16. #
  17.  
  18. CC      = gcc
  19. CLIB    = jamcapi
  20. CFLAGS  = -ansi
  21.  
  22. .c.o:
  23.     $(CC) -c -I.. -ansi $*.c
  24.  
  25. jamutil:  jamutil.o
  26.     gcc $? -l$(CLIB) -o $@
  27.